Skip to content

📦 Update fjogeleit/http-request-action action to v2#1566

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/fjogeleit-http-request-action-2.x
Open

📦 Update fjogeleit/http-request-action action to v2#1566
renovate[bot] wants to merge 1 commit intomainfrom
renovate/fjogeleit-http-request-action-2.x

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Feb 2, 2026

This PR contains the following updates:

Package Update Type Change Package file
fjogeleit/http-request-action major action v1v2 .github/workflows/post-promote-tasks.yml

Release Notes

fjogeleit/http-request-action (fjogeleit/http-request-action)

v2

Compare Source

v2.0

Compare Source

v2.0.0

Compare Source

What's Changed
New Contributors

Full Changelog: fjogeleit/http-request-action@v1...v2.0.0

v1.16.6

Compare Source

What's Changed

Full Changelog: fjogeleit/http-request-action@v1.16.5...v1.16.6

v1.16.5

Compare Source

What's Changed

Full Changelog: fjogeleit/http-request-action@v1.16.4...v1.16.5

v1.16.4: Dependency Updates

Compare Source

What's Changed

Full Changelog: fjogeleit/http-request-action@v1...v1.16.4

v1.16.3: FormData Error Handling

Compare Source

  • Fix undefined error hiding underlying error during FormData processing

Full Changelog: fjogeleit/http-request-action@v1.16.2...v1.16.3

v1.16.2: Dependency Updates

Compare Source

What's Changed
New Contributors

Full Changelog: fjogeleit/http-request-action@v1.16.1...v1.16.2

v1.16.1: Fix err undefined

Compare Source

Full Changelog: fjogeleit/http-request-action@v1.16.0...v1.16.1

v1.16.0: Status Output

Compare Source

What's Changed
New Contributors

Full Changelog: fjogeleit/http-request-action@v1.15.5...v1.16.0

v1.15.5: Support SSL rejectUnauthorized Configuration

Compare Source

What's Changed
New Contributors

Full Changelog: fjogeleit/http-request-action@v1.15.4...v1.15.5

v1.15.4: Fix RetryWait Mapping

Compare Source

What's Changed

Full Changelog: fjogeleit/http-request-action@v1.15.3...v1.15.4

v1.15.3: Retry- and Response Output Fix

Compare Source

What's Changed
New Contributors

Full Changelog: fjogeleit/http-request-action@v1...v1.15.3

v1.15.2: Upgrade to Node v20

Compare Source

What's Changed

Full Changelog: fjogeleit/http-request-action@v1...v1.15.2

v1.15.1: revert response serialization breaking change

Compare Source

What's Changed
  • revert conditional stringify which leads to breaking changes with older versions by @​fjogeleit in #​127

Full Changelog: fjogeleit/http-request-action@v1.15.0...v1.15.1

v1.15.0

Compare Source

What's Changed

Full Changelog: fjogeleit/http-request-action@v1...v1.15.0

v1.14.2: Dependency Updates

Compare Source

What's Changed

Full Changelog: fjogeleit/http-request-action@v1.14.1...v1.14.2

v1.14.1: Dependency Updates

Compare Source

What's Changed

Full Changelog: fjogeleit/http-request-action@v1...v1.14.1

v1.14.0: Retry mechanism

Compare Source

New input values retry and retryWait to define if, how often a request should be retried if failing and the wait time between each try.

v1.13.0: Persist Response Handler

Compare Source

  • New input value responseFile to persist the response content into the given file(path)
  • Update dependencies

v1.12.0: Workflow Improvements

Compare Source

  • use ESBuild instead of ncc
  • 'use strict' added
  • new workflow to test repository integrity
  • new workflow to build the dist code
  • Support JSON Data format for urlencoded content-type

Thanks to @​Uzlopak for the improvements in this release

v1.11.1: Fix empty Data for FormData

Compare Source

Fixes #​57

v1.11.0: New headers output

Compare Source

  • New headers Output for response headers by @​boro2g

v1.10.0: Add custom HTTPS CA

Compare Source

What's Changed

Full Changelog: fjogeleit/http-request-action@v1.9.2...v1.10.0

v1.9.2: Update Error Output

Compare Source

#​46

Build custom output json instead of using toJson. to prevent circular errors

v1.9.1: Dependency Update

Compare Source

v1.9.0: Single File upload

Compare Source

v1.8.2: Dependency Update

Compare Source

Update follow-redirects
Update NodeJS to v16

v1.8.1: Dependency Update

Compare Source

Update axios to 0.21.4
Update form-data to 4.0.0

v1.8.0: Ignore StatusCodes

Compare Source

  • New option ignoreStatusCodes to prevent action to fail if API respond with a configured status code.
    • Accept a list of StatusCodes as string, e.g. '404,401'
    • Creates a warning message to see when a ignoredStatusCode was returned

v1.7.3: Build v1.7.2 changes

Compare Source

v1.7.2: Disable MaxContentLength and MaxBodyLength checks

Compare Source

Fixes #​22

v1.7.1: FileUpload Content-Type

Compare Source

Remove default contentType from actions.yaml, contentType will set to application/json if not provided anyway

Fix duplicated contentType in file upload requests

v1.7.0: File Upload

Compare Source

Related to #​19

Add a new property files to support File Uploads over multipart/form-data Request.

Content-Type will change to "multipart/form-data" independent of the provided configuration.

Values provided as JSON in the data property will be added as additional FormData values. Nested objects are not supported

Basic Example from the test Workflow

jobs:
  request:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2

      - name: Create Test File
        run: |
          echo "test" > testfile.txt

      - name: Request Postman Echo POST Multipart
        uses: fjogeleit/http-request-action@master
        with:
          url: 'https://postman-echo.com/post'
          method: 'POST'
          data: '{ "key": "value" }'
          files: '{ "file": "${{ github.workspace }}/testfile.txt" }'

v1.6.1: Axios Update

Compare Source

axios update to v0.21.1

v1.6.0: None JSON Body support

Compare Source

  • Add support for other Body ContentTypes like XML
  • Update axios to v0.21.0

v1.5.0: Support newline escaping

Compare Source

New option "escapeData" to fix unescaped newline errors in JSON Data

In cases where parts of your JSON Data comes from the GitHub events or other dynamic sources its possible that this content includes unescaped characters like newlines. For this cases you can use this new option to fix related parsing errors by escaping your JSON content inside of this action.

v1.4.2: Update Dependencies

Compare Source

Update @​actions/core and axios

v1.4.1: Fix customHeaders

Compare Source

v1.4.0: New InputOption: "preventFailureOnNoResponse"

Compare Source

Closes #​12

Prevent failure if no response is provided by the request

Usage:

jobs:
  request:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
        with:
          ref: ${{ github.ref }}

      - name: Request Postment Echo GET
        uses: ./
        with:
          url: 'https://postman-echo.com/get'
          method: 'GET'
          preventFailureOnNoResponse: 'true'

v1.3.3: Add mission action input

Compare Source

Fixes #​10

v1.3.2: Fix Error Message conversion

Compare Source

convert error text from JSON into string by setting it as output

v1.3.1: Improved Error Handling

Compare Source

Fixes #​6

Give detailed information about the error instead of unhandled promise rejection error

v1.3.0: Fix Bearer Authorization Header

Compare Source

v1.2.0: Improved Debug Mode

Compare Source

Add additional debug output for debugging
Add workflow tests

v1.1.1: Fix set empty basicHTTP Auth config

Compare Source

Fix #​2

Only add basicHTTP auth when configured

v1.1.0: Custom Headers

Compare Source

Add support for custom headers with a "customHeaders" property


Configuration

📅 Schedule: (in timezone America/Los_Angeles)

  • Branch creation
    • "after 12am on monday"
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot force-pushed the renovate/fjogeleit-http-request-action-2.x branch from c7ab0cf to 8fec6e7 Compare February 12, 2026 10:46
@renovate renovate Bot force-pushed the renovate/fjogeleit-http-request-action-2.x branch from 8fec6e7 to a9b3443 Compare March 5, 2026 13:26
@renovate renovate Bot force-pushed the renovate/fjogeleit-http-request-action-2.x branch from a9b3443 to 5ddd624 Compare March 26, 2026 18:43
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants